* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.8rem;
  color: hsl(210, 10%, 33%);
  background-color: #ffffff;
  line-height: 1.6;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Bai Jamjuree", sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 2.8rem;
  font-size: 1.8rem;
  padding: 1rem 2rem;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1440px) {
  .container {
    grid-template-columns: 1fr;
  }
}

.header {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), url("../images/bg-header-mobile.png") center/cover no-repeat;
  padding: 4.8rem 2rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .header {
    padding: 6.4rem 4rem;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), url("../images/bg-header-desktop.png") center/cover no-repeat;
  }
}
.header__logo {
  margin-bottom: 3.2rem;
}
.header__logo img {
  width: auto;
  height: auto;
}
.header__title {
  font-size: 3.2rem;
  font-weight: 600;
  color: hsl(210, 10%, 33%);
  margin-bottom: 1.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .header__title {
    font-size: 4rem;
  }
}
.header__description {
  font-size: 1.8rem;
  color: hsl(201, 11%, 66%);
  margin-bottom: 3.2rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .header__description {
    font-size: 1.6rem;
  }
}
.header__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .header__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.btn {
  padding: 1.2rem 3.2rem;
  border-radius: 2.8rem;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  flex: 1;
}
@media (min-width: 768px) {
  .btn {
    flex: 0 1 auto;
    padding: 1rem 2.4rem;
  }
}
.btn--primary {
  background-color: hsl(171, 66%, 44%);
  color: #ffffff;
}
.btn--primary:hover {
  background-color: hsl(171, 66%, 54%);
  box-shadow: 0 0.8rem 2rem rgba(38.148, 186.252, 164.0364, 0.3);
}
.btn--primary:active {
  transform: scale(0.98);
}
.btn--secondary {
  background-color: hsl(233, 100%, 69%);
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: hsl(233, 100%, 79%);
  box-shadow: 0 0.8rem 2rem rgba(96.9, 115.345, 255, 0.3);
}
.btn--secondary:active {
  transform: scale(0.98);
}

.snippets {
  padding: 6.4rem 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .snippets {
    padding: 8rem 4rem;
  }
}
.snippets__title {
  font-size: 2.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .snippets__title {
    font-size: 3.2rem;
  }
}
.snippets__description {
  color: hsl(201, 11%, 66%);
  margin-bottom: 4.8rem;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .snippets__description {
    font-size: 1.6rem;
  }
}
.snippets__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .snippets__content {
    grid-template-columns: 1fr 1fr;
    gap: 6.4rem;
  }
}
.snippets__image img {
  max-width: 100%;
  height: auto;
}
.snippets__features {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .snippets__features {
    gap: 3.2rem;
  }
}

.feature__title {
  font-size: 1.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.feature__description {
  color: hsl(201, 11%, 66%);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .feature__description {
    font-size: 1.6rem;
  }
}

.access {
  padding: 6.4rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .access {
    padding: 8rem 4rem;
  }
}
.access__title {
  font-size: 2.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .access__title {
    font-size: 3.2rem;
  }
}
.access__description {
  color: hsl(201, 11%, 66%);
  margin-bottom: 3.2rem;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .access__description {
    font-size: 1.6rem;
  }
}
.access__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.access__image img {
  max-width: 100%;
  height: auto;
}

.workflow {
  padding: 6.4rem 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .workflow {
    padding: 8rem 4rem;
  }
}
.workflow__title {
  font-size: 2.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .workflow__title {
    font-size: 3.2rem;
  }
}
.workflow__description {
  color: hsl(201, 11%, 66%);
  margin-bottom: 4.8rem;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .workflow__description {
    font-size: 1.6rem;
  }
}
.workflow__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .workflow__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem;
  }
}

.workflow-card {
  padding: 2.4rem;
}
@media (min-width: 768px) {
  .workflow-card {
    padding: 3.2rem 2rem;
  }
}
.workflow-card__icon {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
}
.workflow-card__icon img {
  width: 4rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .workflow-card__icon img {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.workflow-card__title {
  font-size: 1.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.workflow-card__description {
  color: hsl(201, 11%, 66%);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .workflow-card__description {
    font-size: 1.6rem;
  }
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2rem;
  padding: 6.4rem 2rem;
  place-items: center;
}
@media (min-width: 768px) {
  .brands {
    grid-template-columns: repeat(5, 1fr);
    padding: 8rem 4rem;
    gap: 3.2rem;
  }
}
.brands__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands__logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.brands__logo img:hover {
  opacity: 1;
}

.download-cta {
  padding: 6.4rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .download-cta {
    padding: 8rem 4rem;
  }
}
.download-cta__title {
  font-size: 2.8rem;
  color: hsl(210, 10%, 33%);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .download-cta__title {
    font-size: 3.2rem;
  }
}
.download-cta__description {
  color: hsl(201, 11%, 66%);
  margin-bottom: 3.2rem;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .download-cta__description {
    font-size: 1.6rem;
  }
}
.download-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .download-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.footer {
  background-color: hsl(210, 10%, 33%);
  padding: 3.2rem 2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3.2rem;
    align-items: center;
    padding: 3.2rem 4rem;
  }
}
.footer__logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__logo {
    margin-bottom: 0;
    justify-content: flex-start;
  }
}
.footer__logo img {
  height: 3.2rem;
  width: auto;
}
.footer__nav {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__nav {
    text-align: left;
  }
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .footer__list {
    flex-direction: row;
    gap: 2.4rem;
    justify-content: center;
  }
}
.footer__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .footer__link {
    font-size: 1.4rem;
  }
}
.footer__link:hover {
  color: hsl(171, 66%, 44%);
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .footer__socials {
    justify-content: flex-end;
  }
}
.footer__social {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social:hover {
  transform: translateY(-0.4rem);
  filter: brightness(0) saturate(100%) invert(48%) sepia(71%) saturate(434%) hue-rotate(138deg) brightness(106%) contrast(101%);
}
.footer__social img {
  width: 2rem;
  height: 2rem;
}

.attribution {
  font-size: 1.1rem;
  text-align: center;
  padding: 1.6rem 2rem;
  background-color: #f5f5f5;
  color: hsl(201, 11%, 66%);
}
.attribution a {
  color: hsl(171, 66%, 44%);
  text-decoration: none;
  font-weight: 600;
}
.attribution a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
